home *** CD-ROM | disk | FTP | other *** search
Java Source | 2003-06-27 | 623 b | 34 lines |
- //Description: Java Swing Application|
- /* Created: {$DateTime} by {$UserName}
- **
- **
- */
-
- import java.awt.event.*;
- import javax.swing.*;
-
- public class {$FileTitleNoExt} extends JFrame
- {
-
- public {$FileTitleNoExt}()
- {
- addWindowListener(new WindowAdapter()
- {
- public void windowClosing(WindowEvent e)
- {
- dispose();
- System.exit(0);
- }
- });
- }
-
- public static void main(String[] args)
- {
- {$FileTitleNoExt} frame = new {$FileTitleNoExt}();
- frame.setSize(500, 400);
- frame.setTitle("{$FileTitleNoExt}");
- frame.setVisible(true);
- }
-
-
- }